home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 3 / Amiga Tools 3.iso / grafik / raytracing / rayshade-4.0.6.3 / libray / libimage / makefile.amiga < prev    next >
Makefile  |  1994-09-15  |  820b  |  42 lines

  1. OPTIMIZE = -O3 -fno-defer-pop -fno-builtin
  2. CCFLAGS = -c -m68020 -m68881
  3. RANLIB = ranlib
  4. CC = gcc
  5. MKDEP = //mkdep
  6. URTINC = 
  7.  
  8. LIB = ../libray.a
  9. INCLUDE = -nostdinc -I../.. -I.. $(URTINC) -IGNU:include -IGNU:os-include \
  10. -Isc:include
  11. CFLAGS = $(CCFLAGS) $(INCLUDE) $(OPTIMIZE)
  12. SHELL = /bin/sh
  13.  
  14. OFILES = image.o
  15. CFILES = image.c
  16.  
  17.  
  18. .c.o:
  19.     $(CC) $(CFLAGS) $<
  20.  
  21. target: $(LIB)
  22.  
  23. $(LIB): $(OFILES)
  24.     ar rv $(LIB) $(OFILES)
  25.     $(RANLIB) $(LIB)
  26.  
  27. clean:
  28.     delete \#?.o quiet
  29.  
  30. # DO NOT DELETE THIS LINE
  31. image.o: image.c
  32. image.o: //config.h
  33. #image.o: //include/rle.h
  34. image.o: //libray/libcommon/color.h
  35. image.o: //libray/libcommon/common.h
  36. image.o: //libray/libcommon/error.h
  37. image.o: //libray/libcommon/expr.h
  38. image.o: //libray/libcommon/ray.h
  39. image.o: //libray/libcommon/transform.h
  40. image.o: //libray/libcommon/vector.h
  41. image.o: image.h
  42.